29c19016c7c6f6efc44957fb492e9b5a2cdc9123,src/com/opencms/workplace/CmsXmlWpConfigFile.java,CmsXmlWpConfigFile,getWpPictureUrl,#,195

Before Change


     * @exception CmsException if the corresponding XML tag doesn't exist in the workplace definition file.
     */
    public String getWpPictureUrl() throws CmsException {
        return getDataValue("path.wppicsurl");
    }

    /**

After Change


     * @exception CmsException if the corresponding XML tag doesn't exist in the workplace definition file.
     */
    public String getWpPictureUrl() throws CmsException {
        String s = getDataValue("path.wppicsurl");
        if(s == null || "".equals(s)) {
            s = ((HttpServletRequest)m_cms.getRequestContext().getRequest().getOriginalRequest()).getServletPath() + getDataValue("path.wppictures");
        }
        return s;
        
    }